home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / bbs / mhis020.zip / CRITHSEC.MEX < prev    next >
Text File  |  1996-09-06  |  398b  |  20 lines

  1. #include <max.mh>
  2.  
  3. void someDumbFunction () {
  4.   print ("Hello world");                        //!@$!@#$!#@!!ing Mex bugs....
  5.   print ("ABCDEFGHIJKLMNOPQRSTUVWXYZ");
  6.   }
  7.  
  8. #include "callers.mh"
  9. #include "sec.mh"
  10.  
  11. int main () {
  12.   int: result;
  13.   read_callers ();
  14.   result := get_class ();
  15.   if (result = -2) return 0;
  16.   callers.criteria.max_priv := result;
  17.   write_callers ();
  18.   }
  19.  
  20.